html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

.header-top {
    background-color: #bfd4dd;
    padding: 0px 0;
    height: 30px;
}

.top-right {
    text-align: right;
}

.links-nav li {
    display: inline-block;
    margin: 0 10px;
}

    .links-nav li a {
        color: #000;
        text-decoration: none;
        font-size: 14px;
    }

        .links-nav li a:hover {
            color: #fff; /* Hover effect */
        }

.badge {
    font-size: 1.2em;
    margin: 0 5px;
}

/* Ensuring the translate widget and font size buttons are aligned */
#google_translate_element {
    display: inline-block;
    margin-top: -10px;
}

.font-button {
    font-size: 1.4em;
}

/* Ensuring the header sticks at the top when scrolling */
.header-top {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

body {
    margin-top: 30px; /* To make space for the fixed header */
    background-color: #d8eaf1ad;
}

.navbar {
    background-color: #073395; /* Light peach color */
}

.navbar-nav .nav-link {
    color: white !important; /* Black color for links */
}



    .navbar-nav .nav-link:hover {
        color: #fdc70f; /* White color when hovering over links */
    }

.navbar-brand {
    color: #0a0a0a; /* Black color for the brand */
}

    .navbar-brand:hover {
        color: #fdc70f; /* White color when hovering over the brand */
    }

.dropdown-menu {
    background-color: #073395; /* Same background color for dropdown */
}

.dropdown-item {
    color: white !important; /* Black color for dropdown items */
}

    .dropdown-item:hover {
        background-color: #fdc70f; /* Lighter peach color on hover */
        color: white !important; /* White color on hover */
    }

/* Change the background color of active navbar items */
.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:focus {
    background-color: #fdc70f !important; /* Set your desired background color */
    color: #073395 !important; /* Optional: set text color to white */
    border-radius: 4px; /* Optional: for rounded corners */
}

/* Optional: Change hover color for better user experience */
.navbar-nav .nav-item .nav-link:hover {
    background-color: #073395; /* Same as the active background */
    color: white !important; /* Change text color on hover */
}
.text-justify-custom {
    text-align: justify;
}

.image-container {
    position: relative;
    height: 150px; /* Adjust height as necessary */
}

.img-custom {
    position: absolute;
    top: 35%; /* Adjusts the image position vertically */
    left: 50%; /* Adjusts the image position horizontally */
    transform: translate(-50%, -50%); /* Centers the image */
    height: 170px;
    width: 170px;
}
